Hey Josh,<br /><br />Our servers are hosted in Oz... so I had to write a bit of code to accomodate the time diff. If you replace the first two lines of the mod to UBBTHREADS.PHP:<br /><br />
<br />$thismonth = date("M");<br />$today = date("d");<br /><br /><br />with this:<br />
<br />$currtime = time ();<br />$currtime = $currtime+($user['U_TimeOffset']*3600);<br /><br />$date = date("d", $currtime);<br />$thismonth = date("M", $currtime);<br /><br /><br />It will generate the correct date for the query provided the user has filled in their TimeOffset.